home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1997 August
/
Walnut Creek CDROM.7z
/
LISTINGS
/
V_12_05
/
ALLISON.ZIP
/
CURSLOC.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-24
|
397 b
|
24 lines
LISTING 15 - Imports Cursor functions into a local scope
// tcursor.cpp: Changes the shape of the cursor
#include <stdio.h>
#include "cursor.h"
main()
{
// using declarations
using Cursor::block();
using Cursor::line();
using Cursor::off();
block();
getchar();
line();
getchar();
off();
getchar();
line();
return 0;
}